Class120.newFieldPanel(String label,int labelSize,JComponent comp)#1{ JPanel panel = new JPanel(new FlowLayout(FlowLayout.LEFT, 10, 0)); panel.add(comp); }
Class840.newFieldPanel(String label,Component c,String trailingLabel)#0{ JPanel panel = new JPanel(new FlowLayout(FlowLayout.LEFT)); panel.add(c); }
Class600.createHeaderPanel(List<String> availableFilters,String i,ActionListener actionListener)#1{ JPanel panel = new JPanel(new FlowLayout()); panel.add(filters); }
Class100.addMillisDescription(@NotNull JSpinner spinner)#2{ JPanel panel = new JPanel(new FlowLayout(FlowLayout.LEFT, 0, 0)); panel.add(spinner); }
Class90.addComponents()#0{ JPanel iconPanel = new JPanel(new FlowLayout(FlowLayout.RIGHT)); iconPanel.add(iconLabel); iconPanel.setOpaque(false); }
Class260.makeLabelPanel(){ JPanel labelPanel = new JPanel(new FlowLayout(FlowLayout.CENTER)); labelPanel.add(tableLabel); }
Class820.createCloseConnectionPanel()#0{ JPanel closeConnectionPanel = new JPanel(new FlowLayout()); closeConnectionPanel.add(closeConnection); }
Class610.addTimeFields()#0{ JPanel timePanel = new JPanel(new FlowLayout(FlowLayout.RIGHT)); timePanel.add(myHours); }
Class560.createNoDelayPanel()#2{ JPanel nodelayPanel = new JPanel(new FlowLayout()); nodelayPanel.add(setNoDelay); }
Class810.center(JComponent c){ JPanel p = new JPanel(new FlowLayout(FlowLayout.CENTER, 0, 0)); p.add(c); }
Class810.addDateFields(){ JPanel datePanel = new JPanel(new FlowLayout(FlowLayout.RIGHT)); datePanel.add(myYears); add(datePanel); }
Class230.button()#4{ JPanel panel = new JPanel(new FlowLayout()); panel.add(cancelButton); }